home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Developer Utilities / Installer 4.0.3 SDK / Script Examples / Install PowerMac [ compressed ] / NotPPC / NotPPC.r < prev    next >
Encoding:
Text File  |  1994-11-15  |  894 b   |  50 lines  |  [TEXT/MPS ]

  1. #include "Types.r"
  2. #include "NotPPC.h"        /* local defintions only */
  3.  
  4.  
  5. resource 'ALRT' (RESOURCE_ID, purgeable) {
  6.     {90, 110, 240, 450},
  7.     RESOURCE_ID,
  8.     {    /* array: 4 elements */
  9.         /* [1] */
  10.         OK, visible, silent,
  11.         /* [2] */
  12.         OK, visible, silent,
  13.         /* [3] */
  14.         OK, visible, silent,
  15.         /* [4] */
  16.         OK, visible, silent
  17.     }
  18.     /****** Extra bytes follow... ******/
  19. #if SystemSevenOrLater
  20.     ,alertPositionMainScreen
  21. #endif
  22. };
  23.  
  24. resource 'DITL' (RESOURCE_ID) {
  25.     {    /* array DITLarray: 3 elements */
  26.         /* [1] */
  27.         {120, 265, 140, 325},
  28.         Button {
  29.             enabled,
  30.             "OK"
  31.         },
  32.         /* [2] */
  33.         {10, 70, 107, 320},
  34.         StaticText {
  35.             disabled,
  36.             "^0"
  37.         },
  38.         /* [3] */
  39.         {10, 20, 40, 50},
  40.         Icon {
  41.             disabled,
  42.             0
  43.         }
  44.     }
  45. };
  46.  
  47. resource 'STR ' (RESOURCE_ID) {
  48.     "This application currently requires a Power Macintosh.\n\nPlease use the installation diskettes to reconfigure this application to run on any Macintosh."
  49. };
  50.